Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 5, 2024

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
preact (source) ^10.20.2 -> ^10.27.2 age confidence

Release Notes

preactjs/preact (preact)

v10.27.2

Compare Source

Types

Fixes

v10.27.1

Compare Source

Performance

Types

Fixes

Maintenance

v10.27.0

Compare Source

Features

Fixes

Maintenance

v10.26.9

Compare Source

Fixes

Maintenance

v10.26.8

Compare Source

Fixes

v10.26.7

Compare Source

Types

Improvements

Maintenance

v10.26.6

Compare Source

Fixes

Types

  • Change HTMLMediaElement.controlsList type to string (DOMTokenList) (#​4744, thanks @​piotr-cz)

Maintenance

v10.26.5

Compare Source

Types

Fixes

Maintenance

v10.26.4

Compare Source

Fixes

v10.26.3

Compare Source

Fixes

Types

Maintenance

v10.26.2

Compare Source

This is a hotfix release! If you are encountering bundling issues with regards to unallowed import syntax, this will fix it!

Fixes

Maintenance

v10.26.1

Compare Source

Fixes

Optimization

Maintenance

v10.26.0

Compare Source

Features

Fixes

Types

Maintenance

v10.25.4

Compare Source

Types

Fixes

v10.25.3

Compare Source

Fixes

Types

v10.25.2

Compare Source

Notable

Revert unkeyed no-search (#​4604, thanks @​JoviDeCroock)

We noticed that there's a few unpleasant scenario's that could form from this change, we wanted to be on the safe side here and revert this for the time being. if you run into issues with swapping components placement wise in a list use the key property.

Fixes

Types

Performance

Maintenance

v10.25.1

Compare Source

Fixes

Types

Maintenance

v10.25.0

Compare Source

Features

Move per-element type interfaces into core and more strictly type IntrinsicElements (#​4546, thanks @​rschristian)

This adds per-element typings for every DOM-node type, this means that our types might become slightly stricter when you are using DOM attributes/properties where they are not allowed, an example of this might be <div src="x" />.

If you notice any issues when upgrading tell us about them, we can evaluate whether we have missed a case.

Recreate unkeyed functional components when they change position. (#​4550, thanks @​JoviDeCroock)

This is a long time bugfix, when we have elements that look like

return (
	{condition ? <Element /> : null}
	{condition ? null : <Element />
)

We would reuse the state of the first VNode to render the second one when the condition switches. When you are using key, this issue was not present.

Support { handleEvent() {} } object interface as a listener (#​4538, thanks @​lilnasy)

We've added support for attaching object/class event-handlers

let handler = {
	onclick,
	handleEvent() {
		this.onclick()
	}
}

<div onClick={handler} />

Fixes

Maintenance

v10.24.3

Compare Source

Fixes

Performance

Maintenance

v10.24.2

Compare Source

Performance

Types

Maintenance

v10.24.1

Compare Source

Fixes

Types

Maintenance

v10.24.0

Compare Source

Features

Fixes

Types

Maintenance

v10.23.2

Compare Source

Fixes

Types

Maintenance

v10.23.1

Compare Source

Fixes

v10.23.0

Compare Source

Features

This adds support for returning a function in functional refs, example

<input
  ref={(ref) => {
    // Assign ref, do something with it
    return () => {
      // ref cleanup, when the element unmounts
      // we run the cleanup
    };
  }}
/>

Fixes

Types

Maintenance

v10.22.1

Compare Source

Fixes

Types

Maintenance

Performance

v10.22.0

Compare Source

Features

Types

Maintenance

Fixes

v10.21.0

Compare Source

Features

Fixes

Types

Maintenance


Configuration

📅 Schedule: Branch creation - "after 10am on monday,before 5pm on monday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@changeset-bot
Copy link

changeset-bot bot commented May 5, 2024

⚠️ No Changeset found

Latest commit: c812268

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@coderabbitai
Copy link

coderabbitai bot commented May 5, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Join our Discord community for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@renovate renovate bot changed the title fix: update dependency preact to ^10.21.0 fix: update dependency preact to ^10.22.0 May 19, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from daad532 to 12a3b07 Compare May 19, 2024 16:17
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 12a3b07 to c40cf2f Compare June 9, 2024 19:04
@renovate renovate bot force-pushed the renovate/preact-10.x branch from c40cf2f to 00ca11b Compare July 1, 2024 06:01
@renovate renovate bot changed the title fix: update dependency preact to ^10.22.0 fix: update dependency preact to ^10.22.1 Jul 1, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 00ca11b to 375ea67 Compare July 21, 2024 19:03
@renovate renovate bot changed the title fix: update dependency preact to ^10.22.1 fix: update dependency preact to ^10.23.1 Jul 28, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from a7c9cda to 3150d36 Compare July 28, 2024 20:18
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 3150d36 to 7cf0a6b Compare August 11, 2024 20:41
@renovate renovate bot changed the title fix: update dependency preact to ^10.23.1 fix: update dependency preact to ^10.23.2 Aug 18, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from b0199da to df88b42 Compare August 18, 2024 19:55
@renovate renovate bot force-pushed the renovate/preact-10.x branch from df88b42 to 5a98540 Compare September 15, 2024 16:35
@renovate renovate bot changed the title fix: update dependency preact to ^10.23.2 fix: update dependency preact to ^10.24.0 Sep 15, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 5a98540 to 96862c1 Compare September 15, 2024 19:26
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from 1730ae1 to d3ec0ed Compare September 29, 2024 15:07
@renovate renovate bot changed the title fix: update dependency preact to ^10.24.0 fix: update dependency preact to ^10.24.1 Sep 29, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from d3ec0ed to 6610ca2 Compare September 29, 2024 19:05
@renovate renovate bot changed the title fix: update dependency preact to ^10.24.1 fix: update dependency preact to ^10.24.2 Oct 6, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 6610ca2 to 67cd093 Compare October 6, 2024 16:57
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 67cd093 to a3717e3 Compare October 14, 2024 08:05
@renovate renovate bot changed the title fix: update dependency preact to ^10.24.2 fix: update dependency preact to ^10.24.3 Oct 14, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from a3717e3 to f55151b Compare October 20, 2024 19:51
@renovate renovate bot force-pushed the renovate/preact-10.x branch from f55151b to c846ad4 Compare November 17, 2024 19:48
@renovate renovate bot force-pushed the renovate/preact-10.x branch from c846ad4 to 4a15198 Compare November 24, 2024 15:28
@renovate renovate bot changed the title fix: update dependency preact to ^10.24.3 fix: update dependency preact to ^10.25.0 Nov 24, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 4a15198 to 1f59fd9 Compare December 2, 2024 12:05
@renovate renovate bot changed the title fix: update dependency preact to ^10.25.0 fix: update dependency preact to ^10.25.1 Dec 2, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from 18041f1 to 99794d0 Compare December 15, 2024 15:07
@renovate renovate bot changed the title fix: update dependency preact to ^10.25.1 fix: update dependency preact to ^10.25.2 Dec 15, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 99794d0 to ddf55ad Compare December 22, 2024 16:42
@renovate renovate bot changed the title fix: update dependency preact to ^10.25.2 fix: update dependency preact to ^10.25.3 Dec 22, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from 9b7b913 to e36fd1d Compare December 29, 2024 16:43
@renovate renovate bot changed the title fix: update dependency preact to ^10.25.3 fix: update dependency preact to ^10.25.4 Dec 29, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from e36fd1d to df0daa8 Compare February 16, 2025 17:47
@renovate renovate bot changed the title fix: update dependency preact to ^10.25.4 fix: update dependency preact to ^10.26.0 Feb 16, 2025
@renovate renovate bot force-pushed the renovate/preact-10.x branch from df0daa8 to a824bb4 Compare February 23, 2025 18:07
@renovate renovate bot changed the title fix: update dependency preact to ^10.26.0 fix: update dependency preact to ^10.26.2 Feb 23, 2025
@renovate renovate bot force-pushed the renovate/preact-10.x branch from a824bb4 to 0e4b311 Compare March 2, 2025 17:18
@renovate renovate bot changed the title fix: update dependency preact to ^10.26.2 fix: update dependency preact to ^10.26.4 Mar 2, 2025
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 0e4b311 to a8c8449 Compare April 6, 2025 18:42
@renovate renovate bot changed the title fix: update dependency preact to ^10.26.4 fix: update dependency preact to ^10.26.5 Apr 6, 2025
@renovate renovate bot force-pushed the renovate/preact-10.x branch from a8c8449 to 343f8f5 Compare June 8, 2025 18:43
@renovate renovate bot changed the title fix: update dependency preact to ^10.26.5 fix: update dependency preact to ^10.26.8 Jun 8, 2025
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 343f8f5 to f0d5d48 Compare June 15, 2025 17:05
@renovate renovate bot changed the title fix: update dependency preact to ^10.26.8 fix: update dependency preact to ^10.26.9 Jun 15, 2025
@renovate renovate bot force-pushed the renovate/preact-10.x branch from f0d5d48 to c812268 Compare September 21, 2025 17:43
@renovate renovate bot changed the title fix: update dependency preact to ^10.26.9 fix: update dependency preact to ^10.27.2 Sep 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant